diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/incoterms/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/incoterms/page.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/incoterms/page.tsx b/app/[lng]/evcp/(evcp)/incoterms/page.tsx index 57a19009..4da1b4e2 100644 --- a/app/[lng]/evcp/(evcp)/incoterms/page.tsx +++ b/app/[lng]/evcp/(evcp)/incoterms/page.tsx @@ -7,7 +7,7 @@ import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"; import { SearchParamsCache } from "@/lib/incoterms/validations"; import { getIncoterms } from "@/lib/incoterms/service"; import { IncotermsTable } from "@/lib/incoterms/table/incoterms-table"; - +import { InformationButton } from "@/components/information/information-button"; interface IndexPageProps { searchParams: Promise<SearchParams>; } @@ -28,7 +28,10 @@ export default async function IndexPage(props: IndexPageProps) { <Shell className="gap-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight">인코텀즈 관리</h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight">인코텀즈 관리</h2> + <InformationButton pageCode="evcp/incoterms" /> + </div> <p className="text-muted-foreground"> 인코텀즈(Incoterms)를 등록, 수정, 삭제할 수 있습니다. </p> |
